summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2020-01-25 23:35:04 -0500
committerBenjamin Hipple <bhipple@protonmail.com>2020-01-25 23:35:04 -0500
commitf796942c56449601ebdea4f507b17ead663670c2 (patch)
tree558ce4fa2c796fd5bdb57b2b5239fb7833d8c190 /pkgs/applications/editors
parent5b6eba9ee2f62457e07eb913c0bfa6ea7fc2c2e8 (diff)
downloadnixpkgs-f796942c56449601ebdea4f507b17ead663670c2.tar
nixpkgs-f796942c56449601ebdea4f507b17ead663670c2.tar.gz
nixpkgs-f796942c56449601ebdea4f507b17ead663670c2.tar.bz2
nixpkgs-f796942c56449601ebdea4f507b17ead663670c2.tar.lz
nixpkgs-f796942c56449601ebdea4f507b17ead663670c2.tar.xz
nixpkgs-f796942c56449601ebdea4f507b17ead663670c2.tar.zst
nixpkgs-f796942c56449601ebdea4f507b17ead663670c2.zip
hexdino: use pname
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/hexdino/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/editors/hexdino/default.nix b/pkgs/applications/editors/hexdino/default.nix
index ef3635aa8d2..eee5a696555 100644
--- a/pkgs/applications/editors/hexdino/default.nix
+++ b/pkgs/applications/editors/hexdino/default.nix
@@ -1,6 +1,7 @@
 { stdenv, fetchFromGitHub, rustPlatform, ncurses }:
-rustPlatform.buildRustPackage rec {
-  name = "hexdino-${version}";
+
+rustPlatform.buildRustPackage {
+  pname = "hexdino";
   version = "0.1.0";
 
   src = fetchFromGitHub {