1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-05-16 14:11:07 +00:00

skktools: refactor

Specify tag name for revision
This commit is contained in:
TANIGUCHI Kohei 2020-09-10 00:59:11 +09:00
parent 5a35396322
commit 9c5a72408d

View file

@ -8,13 +8,13 @@
# dependencies on a Ruby interpreter etc. # dependencies on a Ruby interpreter etc.
# - We for the moment do not package them to keep the dependencies slim. # - We for the moment do not package them to keep the dependencies slim.
# Probably, shall package the newer tools as skktools-extra in the future. # Probably, shall package the newer tools as skktools-extra in the future.
stdenv.mkDerivation { stdenv.mkDerivation rec {
pname = "skktools"; pname = "skktools";
version = "1.3.3"; version = "1.3.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "skk-dev"; owner = "skk-dev";
repo = "skktools"; repo = "skktools";
rev = "c8816fe720604d4fd79f3552e99e0430ca6f2769"; rev = "skktools-${stdenv.lib.replaceStrings ["."] ["_"] version}";
sha256 = "11v1i5gkxvfsipigc1w1m16ijzh85drpl694kg6ih4jfam1q4vdh"; sha256 = "11v1i5gkxvfsipigc1w1m16ijzh85drpl694kg6ih4jfam1q4vdh";
}; };
# # See "12.2. Package naming" # # See "12.2. Package naming"