nixpkgs/pkgs/development/tools/haskell/dconf2nix/default.nix
2021-11-07 20:18:45 +08:00

32 lines
730 B
Nix

{ haskell, haskellPackages, lib, runCommand }:
let
dconf2nix =
haskell.lib.compose.justStaticExecutables
(haskell.lib.compose.overrideCabal (oldAttrs: {
maintainers = (oldAttrs.maintainers or []) ++ [
lib.maintainers.gvolpe
];
}) haskellPackages.dconf2nix);
in
dconf2nix.overrideAttrs (oldAttrs: {
passthru = (oldAttrs.passthru or {}) // {
updateScript = ./update.sh;
# These tests can be run with the following command.
#
# $ nix-build -A dconf2nix.passthru.tests
tests =
runCommand
"dconf2nix-tests"
{
nativeBuildInputs = [
dconf2nix
];
}
''
dconf2nix > $out
'';
};
})