summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-02-07 11:17:57 +0000
committerRobin Gloster <mail@glob.in>2016-02-07 11:17:57 +0000
commit9229e9c6563d88f1b9413ce128e022921089413f (patch)
treecc1ce2eda51dd7cebe7a75e342cfcaf88c45e2f5 /pkgs/tools/typesetting
parent051662610104c2c57b89783084b9f31f5e978c71 (diff)
parent6205f17ea43fd74e4aff14a24a5734ec33415fd7 (diff)
downloadnixlib-9229e9c6563d88f1b9413ce128e022921089413f.tar
nixlib-9229e9c6563d88f1b9413ce128e022921089413f.tar.gz
nixlib-9229e9c6563d88f1b9413ce128e022921089413f.tar.bz2
nixlib-9229e9c6563d88f1b9413ce128e022921089413f.tar.lz
nixlib-9229e9c6563d88f1b9413ce128e022921089413f.tar.xz
nixlib-9229e9c6563d88f1b9413ce128e022921089413f.tar.zst
nixlib-9229e9c6563d88f1b9413ce128e022921089413f.zip
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/tex/disser/default.nix55
1 files changed, 0 insertions, 55 deletions
diff --git a/pkgs/tools/typesetting/tex/disser/default.nix b/pkgs/tools/typesetting/tex/disser/default.nix
deleted file mode 100644
index cbbc3844fefb..000000000000
--- a/pkgs/tools/typesetting/tex/disser/default.nix
+++ /dev/null
@@ -1,55 +0,0 @@
-x@{builderDefsPackage
-  , unzip, texLive, texLiveCMSuper, texLiveAggregationFun
-  , ...}:
-builderDefsPackage
-(a :
-let
-  helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
-    ["texLive" "texLiveCMSuper" "texLiveAggregationFun"];
-
-  buildInputs = map (n: builtins.getAttr n x)
-    (builtins.attrNames (builtins.removeAttrs x helperArgNames))
-    ++ [(a.texLiveAggregationFun {paths=[a.texLive a.texLiveCMSuper];})];
-  sourceInfo = rec {
-    baseName="disser";
-    version="1.3.0";
-    name="${baseName}-${version}";
-    project="${baseName}";
-    url="mirror://sourceforge/project/${project}/${baseName}/${version}/${name}.zip";
-    hash="1iab3va6xw53l8xzmd83kbnzqah9f6imzzfd3c2054q53p0ndlim";
-  };
-in
-rec {
-  src = a.fetchurl {
-    url = sourceInfo.url;
-    sha256 = sourceInfo.hash;
-  };
-
-  inherit (sourceInfo) name version;
-  inherit buildInputs;
-
-  /* doConfigure should be removed if not needed */
-  phaseNames = ["setVars" "doMakeInstall"];
-
-  setVars = a.noDepEntry ''
-    export HOME="$TMPDIR"
-  '';
-
-  makeFlags = ["DESTDIR=$out/share/texmf-dist"];
-
-  meta = {
-    description = "Russian PhD thesis LaTeX package";
-    maintainers = with a.lib.maintainers;
-    [
-      raskin
-    ];
-    platforms = with a.lib.platforms;
-      linux; # platform-independent
-    license = a.lib.licenses.free; # LaTeX Project Public License
-  };
-  passthru = {
-    updateInfo = {
-      downloadPage = "http://sourceforge.net/projects/disser/files/disser/";
-    };
-  };
-}) x