about summary refs log tree commit diff
path: root/pkgs/applications/video/uvccapture
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-11-07 14:50:48 +0100
committerFelix Buehler <account@buehler.rocks>2021-11-07 14:53:06 +0100
commitb52ab3b712cc44b5eb88557ad2ca206dcd10af20 (patch)
tree150c6952f4b9cf2d164b7b424c9d1709b4a0cc6e /pkgs/applications/video/uvccapture
parent54ef803bf82fa441de6d154086325137ff732028 (diff)
downloadnixlib-b52ab3b712cc44b5eb88557ad2ca206dcd10af20.tar
nixlib-b52ab3b712cc44b5eb88557ad2ca206dcd10af20.tar.gz
nixlib-b52ab3b712cc44b5eb88557ad2ca206dcd10af20.tar.bz2
nixlib-b52ab3b712cc44b5eb88557ad2ca206dcd10af20.tar.lz
nixlib-b52ab3b712cc44b5eb88557ad2ca206dcd10af20.tar.xz
nixlib-b52ab3b712cc44b5eb88557ad2ca206dcd10af20.tar.zst
nixlib-b52ab3b712cc44b5eb88557ad2ca206dcd10af20.zip
pkgs/applications: rename name to pname&version part 2
Diffstat (limited to 'pkgs/applications/video/uvccapture')
-rw-r--r--pkgs/applications/video/uvccapture/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/video/uvccapture/default.nix b/pkgs/applications/video/uvccapture/default.nix
index 70c3baa0b811..be0a7fcd2416 100644
--- a/pkgs/applications/video/uvccapture/default.nix
+++ b/pkgs/applications/video/uvccapture/default.nix
@@ -8,11 +8,12 @@ let
 
 in
 
-stdenv.mkDerivation {
-  name = "uvccapture-0.5";
+stdenv.mkDerivation rec {
+  pname = "uvccapture";
+  version = "0.5";
 
   src = fetchurl {
-    url = "mirror://debian/pool/main/u/uvccapture/uvccapture_0.5.orig.tar.gz";
+    url = "mirror://debian/pool/main/u/uvccapture/uvccapture_${version}.orig.tar.gz";
     sha256 = "1b3akkcmr3brbf93akr8xi20w8zqf2g0qfq928500wy04qi6jqpi";
   };