From 1744fe5183db15b65464056b07301ef84d5bf2b0 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Thu, 9 Jul 2009 21:34:29 +0000 Subject: Adding statifier, a tool to make pseudostatic binaries. Unfortunately, statified NixOS-built binaries segfault on Ubuntu.. svn path=/nixpkgs/trunk/; revision=16291 --- pkgs/os-specific/linux/statifier/default.nix | 31 ++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/os-specific/linux/statifier/default.nix (limited to 'pkgs/os-specific/linux/statifier/default.nix') diff --git a/pkgs/os-specific/linux/statifier/default.nix b/pkgs/os-specific/linux/statifier/default.nix new file mode 100644 index 000000000000..4e28dce1670c --- /dev/null +++ b/pkgs/os-specific/linux/statifier/default.nix @@ -0,0 +1,31 @@ +a : +let + fetchurl = a.fetchurl; + + version = a.lib.attrByPath ["version"] "1.6.15" a; + buildInputs = with a; [ + + ]; +in +rec { + src = fetchurl { + url = "http://sourceforge.net/projects/statifier/files/statifier/statifier-${version}.tar.gz"; + sha256 = "0lhdbp7hc15nn6r31yxx7i993a5k8926n5r6j2gi2vvkmf1hciqf"; + }; + + inherit buildInputs; + configureFlags = []; + + /* doConfigure should be removed if not needed */ + phaseNames = ["fixPaths" "doMakeInstall"]; + + fixPaths = a.fullDepEntry ('' + sed -e s@/usr/@"$out/"@g -i */Makefile src/statifier + sed -e s@/bin/bash@"$shell"@g -i src/*.sh + '') ["minInit" "doUnpack"]; + + name = "statifier-" + version; + meta = { + description = "Tool for creating static Linux binaries"; + }; +} -- cgit 1.4.1