depot/pkgs/development/idris-modules/derive.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

26 lines
642 B
Nix

{ build-idris-package
, fetchFromGitHub
, contrib
, pruviloj
, lib
}:
build-idris-package {
pname = "derive";
version = "2018-07-02";
idrisDeps = [ contrib pruviloj ];
src = fetchFromGitHub {
owner = "david-christiansen";
repo = "derive-all-the-instances";
rev = "0a9a5082d4ab6f879a2c141d1a7b645fa73fd950";
sha256 = "06za15m1kv9mijzll5712crry4iwx3b0fjv76gy9vv1p10gy2g4m";
};
meta = {
description = "Type class deriving with elaboration reflection";
homepage = "https://github.com/davlum/derive-all-the-instances";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.brainrape ];
};
}