summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-08-01 06:23:57 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2017-08-01 06:23:57 -0500
commitbded592a8ef7a3e9ab1940aeceb613b078ea9a7e (patch)
treefe955d39011bcd313f17a6cb9c0eff5d78376a76 /pkgs/tools
parentf732d816410faff03783e2180ffba116478eafe0 (diff)
downloadnixpkgs-bded592a8ef7a3e9ab1940aeceb613b078ea9a7e.tar
nixpkgs-bded592a8ef7a3e9ab1940aeceb613b078ea9a7e.tar.gz
nixpkgs-bded592a8ef7a3e9ab1940aeceb613b078ea9a7e.tar.bz2
nixpkgs-bded592a8ef7a3e9ab1940aeceb613b078ea9a7e.tar.lz
nixpkgs-bded592a8ef7a3e9ab1940aeceb613b078ea9a7e.tar.xz
nixpkgs-bded592a8ef7a3e9ab1940aeceb613b078ea9a7e.tar.zst
nixpkgs-bded592a8ef7a3e9ab1940aeceb613b078ea9a7e.zip
Revert "otfcc: init at 0.8.6"
This reverts commit f3a54b014ce9cc3bbf2a65ab88291cbc3e3701b6.
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/otfcc/default.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/pkgs/tools/misc/otfcc/default.nix b/pkgs/tools/misc/otfcc/default.nix
deleted file mode 100644
index ac64978bdd1..00000000000
--- a/pkgs/tools/misc/otfcc/default.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ stdenv, fetchurl, premake5 }:
-
-let version = "0.8.6"; in
-
-let
-  arch =
-    {
-      "i686-linux" = "x86";
-      "x86_64-linux" = "x64";
-    }.${stdenv.system} or (throw "platform ${stdenv.system} is not supported");
-in
-
-stdenv.mkDerivation {
-  name = "otfcc-${version}";
-  src = fetchurl {
-    url = "https://github.com/caryll/otfcc/archive/v${version}.tar.gz";
-    sha256 = "0kap52bzrn21fmph8j2pc71f80f38ak1p2fcczzmrh0hb1r9c8dd";
-  };
-  nativeBuildInputs = [ premake5 ];
-  configurePhase = ''
-    runHook preConfigure
-    premake5 gmake
-    runHook postConfigure
-  '';
-  buildPhase = ''
-    runHook preBuild
-    cd build/gmake
-    make config=release_${arch}
-    cd ../..
-    runHook postBuild
-  '';
-  installPhase = ''
-    runHook preInstall
-    install -d "$out/lib"
-    install "bin/release-${arch}/"lib* "$out/lib"
-    install -d "$out/bin"
-    install "bin/release-${arch}/"otfcc* "$out/bin"
-    runHook postInstall
-  '';
-}