-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathflake.nix
37 lines (35 loc) · 924 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
description = "a version of lolcat with some lgbtq+ pride flags options";
inputs = {
nixpkgs.url = github:nixos/nixpkgs/nixos-unstable;
flake-utils.url = github:numtide/flake-utils;
};
outputs = {self, nixpkgs, flake-utils, ...}@inputs: flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
queercat = (with pkgs; stdenv.mkDerivation {
name = "queercat";
src = ./.;
nativeBuildInputs = [ cmake ];
buildPhase = "make -j $NIX_BUILD_CORES";
installPhase = ''
mkdir -p $out/bin
mv queercat $out/bin
'';
}
);
in rec {
defaultApp = flake-utils.lib.mkApp {
drv = defaultPackage;
};
defaultPackage = queercat;
devShell = pkgs.mkShell {
buildInputs = [
queercat
];
};
}
);
}