Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #27158 from tjikini/elvish

elvish: 0.5 -> 0.9

authored by

Jörg Thalheim and committed by
GitHub
c7739191 59461433

+3 -25
+3 -5
pkgs/shells/elvish/default.nix
··· 2 3 buildGoPackage rec { 4 name = "elvish-${version}"; 5 - version = "0.5"; 6 7 goPackagePath = "github.com/elves/elvish"; 8 ··· 10 repo = "elvish"; 11 owner = "elves"; 12 rev = version; 13 - sha256 = "1dk5f8a2wpgd5cw45ippvx46fxk0yap64skfpzpiqz8bkbnrwbz6"; 14 }; 15 16 - goDeps = ./deps.nix; 17 - 18 meta = with stdenv.lib; { 19 - description = "A Novel unix shell in go language"; 20 homepage = https://github.com/elves/elvish; 21 license = licenses.bsd2; 22 maintainers = with maintainers; [ vrthra ];
··· 2 3 buildGoPackage rec { 4 name = "elvish-${version}"; 5 + version = "0.9"; 6 7 goPackagePath = "github.com/elves/elvish"; 8 ··· 10 repo = "elvish"; 11 owner = "elves"; 12 rev = version; 13 + sha256 = "0alsv04iihrk1nffp6fmyzxid26dqhg1k45957c2ymyzyq9cglxj"; 14 }; 15 16 meta = with stdenv.lib; { 17 + description = "A friendly and expressive Unix shell"; 18 homepage = https://github.com/elves/elvish; 19 license = licenses.bsd2; 20 maintainers = with maintainers; [ vrthra ];
-20
pkgs/shells/elvish/deps.nix
··· 1 - [ 2 - { 3 - goPackagePath = "github.com/elves/getopt"; 4 - fetch = { 5 - type = "git"; 6 - url = "https://github.com/elves/getopt"; 7 - rev = "f91a7bf920995832d55a1182f26657bc975b9c24"; 8 - sha256 = "0wz5dz0iq1b1c2w30mmcgll9xidsrnlvs2906jw9szy0h67310za"; 9 - }; 10 - } 11 - { 12 - goPackagePath = "github.com/mattn/go-sqlite3"; 13 - fetch = { 14 - type = "git"; 15 - url = "https://github.com/mattn/go-sqlite3"; 16 - rev = "b4142c444a8941d0d92b0b7103a24df9cd815e42"; 17 - sha256 = "0xq2y4am8dz9w9aaq24s1npg1sn8pf2gn4nki73ylz2fpjwq9vla"; 18 - }; 19 - } 20 - ]
···