summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan Bernstein <ryanbernstein1@gmail.com>2017-11-27 16:38:43 -0500
committerRyan Bernstein <ryanbernstein1@gmail.com>2017-11-27 16:38:43 -0500
commit1a2e2cac3622827f02ce892ded84e6adb4e8c7b0 (patch)
tree83d420addd6060d25d4c88ec6653317434c22d81
parent2361fd8cf67c2511af9f756ba653fe117d923fa0 (diff)
downloadnixpkgs-1a2e2cac3622827f02ce892ded84e6adb4e8c7b0.tar
nixpkgs-1a2e2cac3622827f02ce892ded84e6adb4e8c7b0.tar.gz
nixpkgs-1a2e2cac3622827f02ce892ded84e6adb4e8c7b0.tar.bz2
nixpkgs-1a2e2cac3622827f02ce892ded84e6adb4e8c7b0.tar.lz
nixpkgs-1a2e2cac3622827f02ce892ded84e6adb4e8c7b0.tar.xz
nixpkgs-1a2e2cac3622827f02ce892ded84e6adb4e8c7b0.tar.zst
nixpkgs-1a2e2cac3622827f02ce892ded84e6adb4e8c7b0.zip
drip: refactor to original repository
-rw-r--r--pkgs/development/tools/drip/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/tools/drip/default.nix b/pkgs/development/tools/drip/default.nix
index a62fa042981..877cba061f0 100644
--- a/pkgs/development/tools/drip/default.nix
+++ b/pkgs/development/tools/drip/default.nix
@@ -7,10 +7,9 @@ stdenv.mkDerivation rec {
 
   src = fetchFromGitHub {
     repo = pname;
-    owner = "flatland";
+    owner = "ninjudd";
     rev = version;
     sha256 = "1zl62wdwfak6z725asq5lcqb506la1aavj7ag78lvp155wyh8aq1";
-   #fetchSubmodules = true;
   };
 
   buildInputs = [ gcc jdk which ];
@@ -28,8 +27,8 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "a launcher for the Java Virtual Machine intended to be a drop-in replacement for the java command, only faster";
-    license = licenses.epl;
-    homepage = https://github.com/flatland/drip;
+    license = licenses.epl10;
+    homepage = https://github.com/ninjudd/drip;
     platforms = platforms.linux;
     maintainers = [ maintainers.rybern ];
   };