mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-05 20:11:43 +03:00
psc-package: 0.3.2 -> 0.4.1
Updates that remove features and improve user experience. Adds warnings for trying to install packages without (purescript/psc-package#126 by @Dretch) Filters "installing" messages for build (purescript/psc-package#130 by @Dretch) Adds options for limiting jobs for install (purescript/psc-package#127 by @vladciobanu) Per purescript/psc-package#121, removes the confusing misfeature "add-from-bower", which led to many users thinking this command was for adding "extra-deps" like Stack. See the thread for details on how you could readily replace this command if you used it before.
This commit is contained in:
parent
01cfa808ff
commit
7dadfbda1f
@ -4,23 +4,24 @@ with lib;
|
|||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "psc-package";
|
pname = "psc-package";
|
||||||
version = "0.3.2";
|
version = "0.4.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "purescript";
|
owner = "purescript";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1zpzcyh82xl0grvgcj8b7yzh053i9z94kbym5qrv413pcx7w50cm";
|
sha256 = "1pbgijglyqrm998a6z5ahp4phd72crzr3s8vq17a9dz3i0a9hcj5";
|
||||||
};
|
};
|
||||||
|
|
||||||
isLibrary = false;
|
isLibrary = false;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
|
|
||||||
executableHaskellDepends = with haskellPackages; [
|
executableHaskellDepends = with haskellPackages; [
|
||||||
aeson aeson-pretty optparse-applicative system-filepath turtle
|
aeson aeson-pretty either errors optparse-applicative
|
||||||
|
system-filepath turtle
|
||||||
];
|
];
|
||||||
|
|
||||||
description = "An experimental package manager for PureScript";
|
description = "A package manager for PureScript based on package sets";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with lib.maintainers; [ Profpatsch ];
|
maintainers = with lib.maintainers; [ Profpatsch ];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user