mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
21 lines
524 B
Nix
21 lines
524 B
Nix
{ build-idris-package
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
build-idris-package {
|
|
pname = "bifunctors";
|
|
version = "2017-02-07";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "japesinator";
|
|
repo = "Idris-Bifunctors";
|
|
rev = "be7b8bde88331ad3af87e5c0a23fc0f3d52f3868";
|
|
sha256 = "0cfp58lhm2g0g1vrpb0mh71qb44n2yvg5sil9ndyf2sqd5ria6yq";
|
|
};
|
|
|
|
meta = {
|
|
description = "Small bifunctor library for idris";
|
|
homepage = "https://github.com/japesinator/Idris-Bifunctors";
|
|
maintainers = [ lib.maintainers.brainrape ];
|
|
};
|
|
}
|