You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
296 B
Nix
13 lines
296 B
Nix
8 years ago
|
with import <nixpkgs> {};
|
||
|
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "foo-${version}";
|
||
|
version = "2016-07-13";
|
||
|
src = fetchgit {
|
||
|
url = "git://midipix.org/slibtool";
|
||
|
rev = "4f56fd184ef6020626492a6f954a486d54f8b7ba";
|
||
|
sha256 = "0nmyp5yrzl9dbq85wyiimsj9fklb8637a1936nw7zzvlnzkgh28n";
|
||
|
};
|
||
|
}
|