summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/version-management/pijul/default.nix
diff options
context:
space:
mode:
authorFlorent Becker <florent.becker@ens-lyon.org>2017-02-21 15:34:28 +0100
committerFlorent Becker <florent.becker@ens-lyon.org>2017-02-21 15:34:28 +0100
commit0a840d4f41f6123fd205fa30a32580d0a87d5be0 (patch)
treef8df21bade2a2955574c8e4c0608d61341c5fbdd /pkgs/applications/version-management/pijul/default.nix
parentd0d5ea0cdfd56f95c5ec256f9583442bbc30f0fa (diff)
pijul: remove
This version is not working, and it is not even a release upstream
Diffstat (limited to 'pkgs/applications/version-management/pijul/default.nix')
-rw-r--r--pkgs/applications/version-management/pijul/default.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/pkgs/applications/version-management/pijul/default.nix b/pkgs/applications/version-management/pijul/default.nix
deleted file mode 100644
index 04a91a6b4a44..000000000000
--- a/pkgs/applications/version-management/pijul/default.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ stdenv, fetchdarcs, rustPlatform, openssl, libssh }:
-
-with rustPlatform;
-
-buildRustPackage rec {
- name = "pijul-${version}";
- version = "0.2-6ab9ba";
-
- src = fetchdarcs {
- url = "http://pijul.org/";
- context = ./pijul.org.context;
- sha256 = "1cgkcr5wdkwj7s0rda90bfchbwmchgi60w5d637894w20hkplsr4";
- };
-
- sourceRoot = "fetchdarcs/pijul";
-
- depsSha256 = "110bj2lava1xs75z6k34aip7zb7rcmnxk5hmiyi32i9hs0ddsdrz";
-
- cargoUpdateHook = ''
- cp -r ../libpijul src/
- '';
-
- setSourceRoot = ''
- chmod -R u+w "$sourceRoot"
- cp -r "$sourceRoot"/../libpijul "$sourceRoot"/src/
- '';
-
- buildInputs = [ openssl libssh ];
-
- meta = with stdenv.lib; {
- homepage = https://pijul.org/;
- description = "Fast DVCS based on a categorical theory of patches";
- license = licenses.gpl3;
- platforms = stdenv.lib.platforms.x86_64; # i686 builds fail due to lmdb
- maintainers = with maintainers; [ puffnfresh ];
- broken = true;
- };
-}