summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorPatrick Mahoney <pat@polycrystal.org>2014-08-30 00:05:23 -0500
committerPatrick Mahoney <pat@polycrystal.org>2014-08-30 00:05:23 -0500
commita4b794bb733b11a021990fb81a610a3e750300e5 (patch)
treef0e4bee2d670e4beac2f1f7744a17cb324e74272 /pkgs/tools/misc
parentd43f1c86bdd6cc90d93f99005f18b725315ec1c8 (diff)
downloadnixlib-a4b794bb733b11a021990fb81a610a3e750300e5.tar
nixlib-a4b794bb733b11a021990fb81a610a3e750300e5.tar.gz
nixlib-a4b794bb733b11a021990fb81a610a3e750300e5.tar.bz2
nixlib-a4b794bb733b11a021990fb81a610a3e750300e5.tar.lz
nixlib-a4b794bb733b11a021990fb81a610a3e750300e5.tar.xz
nixlib-a4b794bb733b11a021990fb81a610a3e750300e5.tar.zst
nixlib-a4b794bb733b11a021990fb81a610a3e750300e5.zip
s6-portable-utils: new package
s6-portable-utils is a set of tiny general Unix utilities, often
performing well-known tasks such as cut and grep, but optimized for
simplicity and small size.
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/s6-portable-utils/default.nix55
1 files changed, 55 insertions, 0 deletions
diff --git a/pkgs/tools/misc/s6-portable-utils/default.nix b/pkgs/tools/misc/s6-portable-utils/default.nix
new file mode 100644
index 000000000000..f8e7dfaddc9e
--- /dev/null
+++ b/pkgs/tools/misc/s6-portable-utils/default.nix
@@ -0,0 +1,55 @@
+{ stdenv, fetchurl, skalibs }:
+
+let
+
+  version = "1.0.3.2";
+
+in stdenv.mkDerivation rec {
+
+  name = "s6-portable-utils-${version}";
+
+  src = fetchurl {
+    url = "http://www.skarnet.org/software/s6-portable-utils/${name}.tar.gz";
+    sha256 = "040nmls7qbgw8yn502lym4kgqh5zxr2ks734bqajpi2ricnasvhl";
+  };
+
+  buildInputs = [ skalibs ];
+
+  sourceRoot = "admin/${name}";
+
+  configurePhase = ''
+    pushd conf-compile
+
+    printf "$out/bin"           > conf-install-command
+    printf "$out/libexec"       > conf-install-libexec
+
+    # let nix builder strip things, cross-platform
+    truncate --size 0 conf-stripbins
+    truncate --size 0 conf-striplibs
+
+    printf "${skalibs}/sysdeps"      > import
+    printf "%s" "${skalibs}/include" > path-include
+    printf "%s" "${skalibs}/lib"     > path-library
+
+    rm -f flag-slashpackage
+    touch flag-allstatic
+
+    popd
+  '';
+
+  preBuild = ''
+    patchShebangs src/sys
+  '';
+
+  preInstall = ''
+    mkdir -p "$out/libexec"
+  '';
+
+  meta = {
+    homepage = http://www.skarnet.org/software/s6-portable-utils/;
+    description = "A set of tiny general Unix utilities optimized for simplicity and small size.";
+    platforms = stdenv.lib.platforms.all;
+    license = stdenv.lib.licenses.isc;
+  };
+
+}