Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 32 lines 706 B view raw
1{ 2 lib, 3 stdenvNoCC, 4 fetchFromGitHub, 5}: 6 7stdenvNoCC.mkDerivation { 8 pname = "vimv"; 9 version = "0-unstable-2019-10-31"; 10 11 src = fetchFromGitHub { 12 owner = "thameera"; 13 repo = "vimv"; 14 rev = "4152496c1946f68a13c648fb7e583ef23dac4eb8"; 15 sha256 = "1fsrfx2gs6bqx7wk7pgcji2i2x4alqpsi66aif4kqvnpqfhcfzjd"; 16 }; 17 18 installPhase = '' 19 install -d $out/bin 20 install $src/vimv $out/bin/vimv 21 patchShebangs $out/bin/vimv 22 ''; 23 24 meta = with lib; { 25 homepage = "https://github.com/thameera/vimv"; 26 description = "Batch-rename files using Vim"; 27 license = licenses.mit; 28 platforms = platforms.all; 29 maintainers = with maintainers; [ kmein ]; 30 mainProgram = "vimv"; 31 }; 32}