Revert "t1utils: use github cache and allow build on darwin"
This reverts commit 9b2bff7097e47fa956e642c2f630b998ce9aef38. It fails to build: http://hydra.nixos.org/build/27428175/nixlog/2/raw
This commit is contained in:
parent
916c10138a
commit
6e8cbbd34c
@ -1,14 +1,11 @@
|
|||||||
{ stdenv, fetchFromGitHub }:
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.39";
|
name = "t1utils-1.39";
|
||||||
name = "t1utils-${version}";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchurl {
|
||||||
owner = "kohler";
|
url = "http://www.lcdf.org/type/${name}.tar.gz";
|
||||||
repo = "t1utils";
|
sha256 = "1i6ln194ns2g4j5zjlj4bfzxpkfpnxvy37n9baq3hywjqkjz7bhg";
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "02n4dzxa8fz0dbxari7xh6cq66x3az6g55fq8ix2bfmww42s4v2r";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
@ -25,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||||||
# README from tarball says "BSD-like" and points to non-existing LICENSE
|
# README from tarball says "BSD-like" and points to non-existing LICENSE
|
||||||
# file...
|
# file...
|
||||||
license = "Click"; # MIT with extra clause, https://github.com/kohler/t1utils/blob/master/LICENSE
|
license = "Click"; # MIT with extra clause, https://github.com/kohler/t1utils/blob/master/LICENSE
|
||||||
platforms = platforms.all;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.bjornfor ];
|
maintainers = [ maintainers.bjornfor ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user