Merge pull request #16444 from vrthra/units

units: 2.12 -> 2.13

authored by Lancelot SIX and committed by GitHub 4848342c aa9a0488

+4 -3
+4 -3
pkgs/tools/misc/units/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "units-${version}"; 5 - version = "2.12"; 6 7 src = fetchurl { 8 url = "mirror://gnu/units/${name}.tar.gz"; 9 - sha256 = "1jxvjknz2jhq773jrwx9gc1df3gfy73yqmkjkygqxzpi318yls3q"; 10 }; 11 12 buildInputs = [ readline ]; ··· 17 description = "Unit conversion tool"; 18 homepage = https://www.gnu.org/software/units/; 19 license = [ licenses.gpl3Plus ]; 20 - platforms = stdenv.lib.platforms.all; 21 }; 22 }
··· 2 3 stdenv.mkDerivation rec { 4 name = "units-${version}"; 5 + version = "2.13"; 6 7 src = fetchurl { 8 url = "mirror://gnu/units/${name}.tar.gz"; 9 + sha256 = "1awhjw9zjlfb8s5g3yyx63f7ddfcr1sanlbxpqifmrgq24ql198b"; 10 }; 11 12 buildInputs = [ readline ]; ··· 17 description = "Unit conversion tool"; 18 homepage = https://www.gnu.org/software/units/; 19 license = [ licenses.gpl3Plus ]; 20 + platforms = platforms.all; 21 + maintainers = [ maintainers.vrthra ]; 22 }; 23 }