nixpkgs/pkgs/development/compilers/purescript/psc-package/default.nix

27 lines
629 B
Nix
Raw Normal View History

2017-04-11 15:09:42 -07:00
{ haskellPackages, mkDerivation, fetchFromGitHub, lib }:
with lib;
mkDerivation rec {
pname = "psc-package";
version = "0.3.2-pre";
2017-04-11 15:09:42 -07:00
src = fetchFromGitHub {
owner = "purescript";
repo = pname;
rev = "v${version}";
sha256 = "0vriyvq0mad3px4lhbqg6xrym2z6wnhr81101mx8cg1lgql1wgwk";
2017-04-11 15:09:42 -07:00
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = with haskellPackages; [
aeson aeson-pretty optparse-applicative system-filepath turtle
];
description = "An experimental package manager for PureScript";
license = licenses.bsd3;
maintainers = with lib.maintainers; [ Profpatsch ];
2017-04-11 15:09:42 -07:00
}