mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
42 lines
1.3 KiB
Nix
42 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, runtimeShell }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "thinkingrock-binary-2.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/thinkingrock/ThinkingRock/TR%202.2.1/tr-2.2.1.tar.gz";
|
|
sha256 = "0hnwvvyc8miiz8w2g4iy7s4rgfy0kfbncgbgfzpsq6nrzq334kgm";
|
|
};
|
|
|
|
/* it would be a really bad idea to put thinkingrock tr executable in PATH!
|
|
the tr.sh script does use the coreutils tr itself
|
|
That's why I've renamed the wrapper and called it thinkingrock
|
|
However you may not rename the bin/tr script cause it will notice and throw an
|
|
"java.lang.IllegalArgumentException: Malformed branding token: thinkingrock"
|
|
exception. I hope that's fine
|
|
*/
|
|
|
|
buildPhase = ''
|
|
# only keep /bin/tr
|
|
ls -1 bin/* | grep -ve 'bin/tr''$' | xargs rm
|
|
# don't keep the other .exe file either
|
|
find . -iname "*.exe" | xargs -n1 rm
|
|
mkdir -p $out/{nix-support/tr-files,bin}
|
|
cp -r . $out/nix-support/tr-files
|
|
cat >> $out/bin/thinkingrock << EOF
|
|
#!${runtimeShell}
|
|
exec $out/nix-support/tr-files/bin/tr "$@"
|
|
EOF
|
|
chmod +x $out/bin/thinkingrock
|
|
'';
|
|
|
|
installPhase = ":";
|
|
|
|
meta = with lib; {
|
|
description = "Task management system";
|
|
homepage = "http://www.thinkingrock.com.au/";
|
|
license = licenses.cddl;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|