summary refs log tree commit diff
path: root/pkgs/os-specific/linux/ldm
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-03-23 23:22:02 +0200
committerArtturin <Artturin@artturin.com>2022-03-24 23:56:14 +0200
commit33cce15e42e4086ea26b5fc026a2de3ca2e07f29 (patch)
treecb8ccb90f866abc86fcd7f56db390d8d92ab0f98 /pkgs/os-specific/linux/ldm
parent6a1cb83b419afb4e3f5ed92cabe56f2d9f514d9f (diff)
downloadnixpkgs-33cce15e42e4086ea26b5fc026a2de3ca2e07f29.tar
nixpkgs-33cce15e42e4086ea26b5fc026a2de3ca2e07f29.tar.gz
nixpkgs-33cce15e42e4086ea26b5fc026a2de3ca2e07f29.tar.bz2
nixpkgs-33cce15e42e4086ea26b5fc026a2de3ca2e07f29.tar.lz
nixpkgs-33cce15e42e4086ea26b5fc026a2de3ca2e07f29.tar.xz
nixpkgs-33cce15e42e4086ea26b5fc026a2de3ca2e07f29.tar.zst
nixpkgs-33cce15e42e4086ea26b5fc026a2de3ca2e07f29.zip
treewide: remove meta.repositories
there's no documentation for meta.repositories and its not widely used
Diffstat (limited to 'pkgs/os-specific/linux/ldm')
-rw-r--r--pkgs/os-specific/linux/ldm/default.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/ldm/default.nix b/pkgs/os-specific/linux/ldm/default.nix
index 072b53b02ec..f8a519de847 100644
--- a/pkgs/os-specific/linux/ldm/default.nix
+++ b/pkgs/os-specific/linux/ldm/default.nix
@@ -4,7 +4,6 @@ assert mountPath != "";
 
 let
   version = "0.5";
-  git = "https://github.com/LemonBoy/ldm.git";
 in
 stdenv.mkDerivation rec {
   pname = "ldm";
@@ -13,7 +12,7 @@ stdenv.mkDerivation rec {
   # There is a stable release, but we'll use the lvm branch, which
   # contains important fixes for LVM setups.
   src = fetchgit {
-    url = meta.repositories.git;
+    url = "https://github.com/LemonBoy/ldm";
     rev = "refs/tags/v${version}";
     sha256 = "0lxfypnbamfx6p9ar5k9wra20gvwn665l4pp2j4vsx4yi5q7rw2n";
   };
@@ -36,8 +35,6 @@ stdenv.mkDerivation rec {
   meta = {
     description = "A lightweight device mounter, with libudev as only dependency";
     license = lib.licenses.mit;
-
     platforms = lib.platforms.linux;
-    repositories.git = git;
   };
 }