nixpkgs/pkgs/development/compilers/purescript/psc-package/default.nix
Maxime Dénès 1e1839239c psc-package: 0.2.5 -> 0.3.2-pre
Note: the previous version was not building due to outdated upstream
dependencies.
2018-03-31 10:42:42 +01:00

27 lines
629 B
Nix

{ haskellPackages, mkDerivation, fetchFromGitHub, lib }:
with lib;
mkDerivation rec {
pname = "psc-package";
version = "0.3.2-pre";
src = fetchFromGitHub {
owner = "purescript";
repo = pname;
rev = "v${version}";
sha256 = "0vriyvq0mad3px4lhbqg6xrym2z6wnhr81101mx8cg1lgql1wgwk";
};
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 ];
}