about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2020-04-08 15:58:33 +0200
committerGitHub <noreply@github.com>2020-04-08 15:58:33 +0200
commitb7243c79c878c38bc6c42508034c3074930a38bf (patch)
tree94d6a46ace0c9f1b6edeaf5a03aff8c4d7f2a4e4 /pkgs/tools
parent2a7a7a8155b0d553d873fdd8a1cb5a90a6ea0971 (diff)
parentbd16668567fbba95c42c00616480309a38673444 (diff)
downloadnixlib-b7243c79c878c38bc6c42508034c3074930a38bf.tar
nixlib-b7243c79c878c38bc6c42508034c3074930a38bf.tar.gz
nixlib-b7243c79c878c38bc6c42508034c3074930a38bf.tar.bz2
nixlib-b7243c79c878c38bc6c42508034c3074930a38bf.tar.lz
nixlib-b7243c79c878c38bc6c42508034c3074930a38bf.tar.xz
nixlib-b7243c79c878c38bc6c42508034c3074930a38bf.tar.zst
nixlib-b7243c79c878c38bc6c42508034c3074930a38bf.zip
Merge pull request #84698 from jtojnar/gnome2-cleanups
gnome2 cleanups
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/filesystems/relfs/default.nix51
1 files changed, 0 insertions, 51 deletions
diff --git a/pkgs/tools/filesystems/relfs/default.nix b/pkgs/tools/filesystems/relfs/default.nix
deleted file mode 100644
index c99a95714c09..000000000000
--- a/pkgs/tools/filesystems/relfs/default.nix
+++ /dev/null
@@ -1,51 +0,0 @@
-{ stdenv, fetchcvs, ocaml, fuse, postgresql, pcre
-, libuuid, gnome_vfs, pkgconfig, GConf }:
-
-stdenv.mkDerivation {
-	name = "relfs-2008.03.05";
-
-	src = fetchcvs {
-		cvsRoot = ":pserver:anonymous@relfs.cvs.sourceforge.net:/cvsroot/relfs";
-		module = "relfs";
-		date = "2008-03-05";
-		sha256 = "949f8eff7e74ff2666cccf8a1efbfcce8d54bc41bec6ad6db8c029de7ca832a3";
-	};
-
-  nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ ocaml fuse postgresql pcre libuuid gnome_vfs GConf ];
-
-  buildPhase = ''
-    cd deps
-		sed -e 's/^CPP/#&/ ; s/^# CPP=gcc/CPP=gcc/' -i Makefile.camlidl
-		make
-		cd ../src
-		sed -e 's/NULL\\|FALSE/0/g' -i Mimetype_lib.c
-		sed -e 's@/usr/local/@'\$out/'@' -i Makefile
-		sed -e '/install:/a\\\tmkdir -p '\$out'/share' -i Makefile
-		make
-		mkdir -p \$out/bin
-		echo '
-		  createuser -A -D \$1
-			dropdb relfs_\$1 ;
-			rm -rf /tmp/relfs-\$1-tmp;
-			mkdir /tmp/relfs-\$1-tmp;
-			USER=\$1 relfs -f -s /tmp/relfs-\$1-tmp  &
-			sleep 1 &&
-			kill -15 \''${!};
-			rm -rf /tmp/relfs-\$1-tmp ;
-			psql -d relfs_\$1 <<< \"ALTER DATABASE relfs_\$1 OWNER TO \$1;
-				ALTER TABLE obj OWNER TO \$1;
-				ALTER TABLE obj_mimetype OWNER TO \$1;
-				ALTER TABLE membership OWNER TO \$1;\"' > \$out/bin/relfs_grant;
-		chmod a+x \$out/bin/relfs_grant;
-  '';
-
-	meta = with stdenv.lib; {
-		description = "A relational filesystem on top of FUSE";
-    homepage = http://relfs.sourceforge.net;
-    license = licenses.gpl2;
-    maintainers = [ maintainers.raskin ];
-    platforms = platforms.linux;
-    broken = true;
-	};
-}