mirror of
https://github.com/danth/stylix
synced 2024-11-22 12:13:08 +00:00
Remove dependency on flake-utils ➖
This commit is contained in:
parent
324b951687
commit
ff5da2914c
2 changed files with 47 additions and 69 deletions
18
flake.lock
18
flake.lock
|
@ -39,23 +39,7 @@
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"base16": "base16",
|
"base16": "base16",
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs"
|
||||||
"utils": "utils"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"utils": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1631561581,
|
|
||||||
"narHash": "sha256-3VQMV5zvxaVLvqqUrNz3iJelLw30mIVSfZmAaauM3dA=",
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"rev": "7e5bf3925f6fbdfaf50a2a7ca0be2879c4261d19",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"type": "github"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
48
flake.nix
48
flake.nix
|
@ -5,53 +5,47 @@
|
||||||
url = "github:SenchoPens/base16.nix";
|
url = "github:SenchoPens/base16.nix";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
utils.url = "github:numtide/flake-utils";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { nixpkgs, base16, utils, self, ... }:
|
outputs =
|
||||||
(utils.lib.eachSystem [ "aarch64-linux" "i686-linux" "x86_64-linux" ]
|
{ nixpkgs, base16, self, ... }:
|
||||||
(system:
|
with nixpkgs.lib;
|
||||||
|
{
|
||||||
|
packages = genAttrs [ "aarch64-linux" "i686-linux" "x86_64-linux" ] (
|
||||||
|
system:
|
||||||
let
|
let
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
|
|
||||||
ghc = pkgs.haskellPackages.ghcWithPackages (haskellPackages:
|
ghc =
|
||||||
with haskellPackages; [
|
pkgs.haskellPackages.ghcWithPackages
|
||||||
json
|
(ps: with ps; [ json JuicyPixels random ]);
|
||||||
JuicyPixels
|
|
||||||
random
|
|
||||||
]);
|
|
||||||
|
|
||||||
|
in {
|
||||||
palette-generator = pkgs.stdenvNoCC.mkDerivation {
|
palette-generator = pkgs.stdenvNoCC.mkDerivation {
|
||||||
name = "palette-generator";
|
name = "palette-generator";
|
||||||
src = ./palette-generator;
|
src = ./palette-generator;
|
||||||
buildInputs = [ ghc ];
|
buildInputs = [ ghc ];
|
||||||
buildPhase =
|
buildPhase = ''
|
||||||
"ghc -O -threaded -Wall -Wno-type-defaults Stylix/Main.hs";
|
ghc -O -threaded -Wall -Wno-type-defaults Stylix/Main.hs
|
||||||
installPhase = "install -D Stylix/Main $out/bin/palette-generator";
|
'';
|
||||||
|
installPhase = ''
|
||||||
|
install -D Stylix/Main $out/bin/palette-generator
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
# Internal documentation
|
|
||||||
palette-generator-haddock = pkgs.stdenvNoCC.mkDerivation {
|
palette-generator-haddock = pkgs.stdenvNoCC.mkDerivation {
|
||||||
name = "palette-generator-haddock";
|
name = "palette-generator-haddock";
|
||||||
src = ./palette-generator;
|
src = ./palette-generator;
|
||||||
buildInputs = [ ghc ];
|
buildInputs = [ ghc ];
|
||||||
buildPhase =
|
buildPhase = ''
|
||||||
"haddock $src/**/*.hs --html --ignore-all-exports --odir $out";
|
haddock $src/**/*.hs --html --ignore-all-exports --odir $out
|
||||||
|
'';
|
||||||
dontInstall = true;
|
dontInstall = true;
|
||||||
dontFixup = true;
|
dontFixup = true;
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
palette-generator-app = utils.lib.mkApp {
|
|
||||||
drv = palette-generator;
|
|
||||||
name = "palette-generator";
|
|
||||||
};
|
|
||||||
|
|
||||||
in {
|
|
||||||
packages = {
|
|
||||||
inherit palette-generator palette-generator-haddock;
|
|
||||||
};
|
|
||||||
apps.palette-generator = palette-generator-app;
|
|
||||||
})) // {
|
|
||||||
nixosModules.stylix = { pkgs, ... }@args: {
|
nixosModules.stylix = { pkgs, ... }@args: {
|
||||||
imports = [
|
imports = [
|
||||||
./modules/alacritty.nix
|
./modules/alacritty.nix
|
||||||
|
|
Loading…
Reference in a new issue