1
0
Fork 0
mirror of https://github.com/malob/prefmanager.git synced 2024-12-14 11:57:49 +00:00
prefmanager/prefmanager.nix
2020-01-28 19:42:00 -08:00

27 lines
829 B
Nix

{ mkDerivation, async, base, containers, diffmap, hpack, hxt
, optparse-applicative, plist, pretty-show, process, stdenv
}:
mkDerivation {
pname = "prefmanager";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
async base containers diffmap hxt optparse-applicative plist
pretty-show process
];
libraryToolDepends = [ hpack ];
executableHaskellDepends = [
async base containers diffmap hxt optparse-applicative plist
pretty-show process
];
testHaskellDepends = [
async base containers diffmap hxt optparse-applicative plist
pretty-show process
];
prePatch = "hpack";
homepage = "https://github.com/malob/prefmanager#readme";
description = "A CLI utility for managing macOS preferences";
license = stdenv.lib.licenses.bsd3;
}