mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 13:43:22 +00:00
13 lines
280 B
Nix
13 lines
280 B
Nix
|
{cabal, monadsFd}:
|
||
|
|
||
|
cabal.mkDerivation (self : {
|
||
|
pname = "fclabels";
|
||
|
version = "0.4.2";
|
||
|
sha256 = "d1abfd94f8970e55ed839645a58697b8beeacc5e5ea4a5861001539aa8fc28d7";
|
||
|
propagatedBuildInputs = [monadsFd];
|
||
|
meta = {
|
||
|
description = "First class accessor labels";
|
||
|
};
|
||
|
})
|
||
|
|