mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
reptyr: version 0.5
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
927ed152f4
commit
e43130d379
1 changed files with 6 additions and 6 deletions
|
@ -1,11 +1,11 @@
|
||||||
{stdenv, fetchgit}:
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "0.4";
|
version = "0.5";
|
||||||
name = "reptyr-${version}";
|
name = "reptyr-${version}";
|
||||||
src = fetchgit {
|
src = fetchurl {
|
||||||
url = "https://github.com/nelhage/reptyr.git";
|
url = "https://github.com/nelhage/reptyr/archive/reptyr-${version}.tar.gz";
|
||||||
rev = "refs/tags/${name}";
|
sha256 = "077cvjjf534nxh7qqisw27a0wa61mdgyik43k50f8v090rggz2xm";
|
||||||
sha256 = "2d2814c210e4bde6f9bcf3aa20477287d7e4a5aa7ee09110b37d2eaaf7e5ecae";
|
|
||||||
};
|
};
|
||||||
makeFlags = ["PREFIX=$(out)"];
|
makeFlags = ["PREFIX=$(out)"];
|
||||||
meta = {
|
meta = {
|
||||||
|
|
Loading…
Reference in a new issue