mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
bf995e3641
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
26 lines
643 B
Nix
26 lines
643 B
Nix
{ build-idris-package
|
|
, fetchFromGitHub
|
|
, specdris
|
|
, lib
|
|
}:
|
|
build-idris-package {
|
|
pname = "patricia";
|
|
version = "2017-10-27";
|
|
|
|
idrisDeps = [ specdris ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ChShersh";
|
|
repo = "idris-patricia";
|
|
rev = "24724e6d0564f2f813d0d0a58f5c5db9afe35313";
|
|
sha256 = "093q3qjmr93wv8pqwk0zfm3hzf14c235k9c9ip53rhg6yzcm0yqz";
|
|
};
|
|
|
|
meta = {
|
|
description = "Immutable map from integer keys to values based on patricia tree. Basically persistent array";
|
|
homepage = "https://github.com/ChShersh/idris-patricia";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.brainrape ];
|
|
};
|
|
}
|