mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 19:45:54 +00:00
11 lines
288 B
Nix
11 lines
288 B
Nix
{ callPackage, fetchgit }:
|
|
|
|
callPackage ./build.nix {
|
|
version = "unstable-2018-05-30";
|
|
SRC = fetchgit {
|
|
url = "https://github.com/feeley/gambit.git";
|
|
rev = "ffe8841b56330eb86fd794b16dc7f83914ecc7c5";
|
|
sha256 = "1xzkwa2f6zazybbgd5zynhr36krayhr29vsbras5ld63hkrxrp7q";
|
|
};
|
|
}
|