about summary refs log tree commit diff
path: root/pkgs/development/compilers/meta-environment
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-08-15 16:28:33 +0200
committerFelix Buehler <account@buehler.rocks>2021-08-21 23:02:55 +0200
commit7c784439a265f7d9cd32be35ed7d7363b626e3eb (patch)
treef8dc05ae880cca16d247e0898cd44a853e47013a /pkgs/development/compilers/meta-environment
parent77506e4f258f1922148986a73a713006318e9fe9 (diff)
development/{arduino/compilers/interpreters}: replace name with pname&version
Diffstat (limited to 'pkgs/development/compilers/meta-environment')
-rw-r--r--pkgs/development/compilers/meta-environment/meta-build-env/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/compilers/meta-environment/meta-build-env/default.nix b/pkgs/development/compilers/meta-environment/meta-build-env/default.nix
index 454156c2d2805..195f0c0e36f89 100644
--- a/pkgs/development/compilers/meta-environment/meta-build-env/default.nix
+++ b/pkgs/development/compilers/meta-environment/meta-build-env/default.nix
@@ -1,9 +1,11 @@
 { lib, stdenv, fetchurl }:
 
-stdenv.mkDerivation {
-  name = "meta-build-env-0.1";
+stdenv.mkDerivation rec {
+  pname = "meta-build-env";
+  version = "0.1";
+
   src = fetchurl {
-    url = "http://www.meta-environment.org/releases/meta-build-env-0.1.tar.gz";
+    url = "http://www.meta-environment.org/releases/meta-build-env-${version}.tar.gz";
     sha256 = "1imn1gaan4fv73v8w3k3lgyjzkcn7bdp69k6hlz0vqdg17ysd1x3";
   };