summary refs log tree commit diff
path: root/pkgs/development/tools/haskell
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2022-03-09 11:52:44 +0100
committerFelix Buehler <account@buehler.rocks>2022-03-14 19:32:50 +0100
commit9aeb5a8d01c5272af88eaf3dac8be6e5cece899c (patch)
tree304f5297d78c273a5564f241bd404da7a5ddf19a /pkgs/development/tools/haskell
parentae6e3ae0e2508df7812a2a2e2c79a7f75bf2cb64 (diff)
downloadnixpkgs-9aeb5a8d01c5272af88eaf3dac8be6e5cece899c.tar
nixpkgs-9aeb5a8d01c5272af88eaf3dac8be6e5cece899c.tar.gz
nixpkgs-9aeb5a8d01c5272af88eaf3dac8be6e5cece899c.tar.bz2
nixpkgs-9aeb5a8d01c5272af88eaf3dac8be6e5cece899c.tar.lz
nixpkgs-9aeb5a8d01c5272af88eaf3dac8be6e5cece899c.tar.xz
nixpkgs-9aeb5a8d01c5272af88eaf3dac8be6e5cece899c.tar.zst
nixpkgs-9aeb5a8d01c5272af88eaf3dac8be6e5cece899c.zip
haskellPackages.dconf2nix: switch to fetchFromGitHub
Diffstat (limited to 'pkgs/development/tools/haskell')
-rw-r--r--pkgs/development/tools/haskell/dconf2nix/dconf2nix.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/tools/haskell/dconf2nix/dconf2nix.nix b/pkgs/development/tools/haskell/dconf2nix/dconf2nix.nix
index 6ac6605797e..8d6e1912471 100644
--- a/pkgs/development/tools/haskell/dconf2nix/dconf2nix.nix
+++ b/pkgs/development/tools/haskell/dconf2nix/dconf2nix.nix
@@ -1,14 +1,14 @@
-{ mkDerivation, base, containers, fetchgit, hedgehog, lib
+{ mkDerivation, base, containers, fetchFromGitHub, hedgehog, lib
 , optparse-applicative, parsec, template-haskell, text
 }:
 mkDerivation {
   pname = "dconf2nix";
   version = "0.0.11";
-  src = fetchgit {
-    url = "https://github.com/gvolpe/dconf2nix.git";
-    sha256 = "1kv88bxi7l5kcm66m5y85b8fz1zsdshvw37k715g2biwa0an5s6f";
+  src = fetchFromGitHub {
+    owner = "gvolpe";
+    repo = "dconf2nix";
     rev = "fe7e3d973caa87b1b706096aff3d670f65e39fda";
-    fetchSubmodules = true;
+    sha256 = "sha256-zuhiFVA8LvFKOPMMvqFu+ofv0CrIl2pMZbPQE/tCaM8=";
   };
   isLibrary = true;
   isExecutable = true;