nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 25 lines 594 B view raw
1{ 2 build-idris-package, 3 fetchFromGitHub, 4 lib, 5}: 6build-idris-package { 7 pname = "coda"; 8 version = "2018-01-25"; 9 10 ipkgName = "Coda"; 11 12 src = fetchFromGitHub { 13 owner = "ostera"; 14 repo = "idris-coda"; 15 rev = "0d8b29b7b73aa1ea80bf216e5e6dea5e81156e32"; 16 sha256 = "07wps3pyp4ph0vj3640x561gkjkbcdq1if9h6sjjb30924sbdxfg"; 17 }; 18 19 meta = { 20 description = "Some Idris libraries including nodejs bindings and ISO8601 Date and Time"; 21 homepage = "https://github.com/ostera/idris-coda"; 22 license = lib.licenses.bsd3; 23 maintainers = [ lib.maintainers.brainrape ]; 24 }; 25}