summary refs log tree commit diff
path: root/pkgs/applications/misc/hello
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2015-08-13 18:29:49 +0200
committerPascal Wittmann <mail@pascal-wittmann.de>2015-08-13 18:29:49 +0200
commit26939eee7954792f9c0713983f3d63c49164fe73 (patch)
tree3874e329ddfc92dfa7d7e052dea0a4910beb5e86 /pkgs/applications/misc/hello
parent5f3dca9303de83c63579b5393ae6a1f8213bb1f3 (diff)
downloadnixlib-26939eee7954792f9c0713983f3d63c49164fe73.tar
nixlib-26939eee7954792f9c0713983f3d63c49164fe73.tar.gz
nixlib-26939eee7954792f9c0713983f3d63c49164fe73.tar.bz2
nixlib-26939eee7954792f9c0713983f3d63c49164fe73.tar.lz
nixlib-26939eee7954792f9c0713983f3d63c49164fe73.tar.xz
nixlib-26939eee7954792f9c0713983f3d63c49164fe73.tar.zst
nixlib-26939eee7954792f9c0713983f3d63c49164fe73.zip
Remove unreferenced files
This commit removes files that are not referenced in nixpkgs anymore. I
have created this list by finding potential candidates using

  find nixpkgs/pkgs -type d -links 2 | parallel -N 1 'out=`grep -L {}  top-level/all-packages.nix`;  test -n "$out" && echo  {}'

and have then searched for those candidates with grep in whole nixpkgs.
Diffstat (limited to 'pkgs/applications/misc/hello')
-rw-r--r--pkgs/applications/misc/hello/ex-1/builder.sh9
-rw-r--r--pkgs/applications/misc/hello/ex-1/default.nix16
2 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/applications/misc/hello/ex-1/builder.sh b/pkgs/applications/misc/hello/ex-1/builder.sh
deleted file mode 100644
index 08bba946cce2..000000000000
--- a/pkgs/applications/misc/hello/ex-1/builder.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-source $stdenv/setup
-
-PATH=$perl/bin:$PATH
-
-tar xvfz $src
-cd hello-*
-./configure --prefix=$out
-make
-make install
diff --git a/pkgs/applications/misc/hello/ex-1/default.nix b/pkgs/applications/misc/hello/ex-1/default.nix
deleted file mode 100644
index 51b2ccb58ed3..000000000000
--- a/pkgs/applications/misc/hello/ex-1/default.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{stdenv, fetchurl, perl}:
-
-stdenv.mkDerivation {
-  name = "hello-2.1.1";
-  builder = ./builder.sh;
-  src = fetchurl {
-    url = mirror://gnu/hello/hello-2.1.1.tar.gz;
-    md5 = "70c9ccf9fac07f762c24f2df2290784d";
-  };
-  inherit perl;
-
-  meta = {
-    description = "GNU Hello, a classic computer science tool";
-    homepage = http://www.gnu.org/software/hello/;
-  };
-}