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