about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorMatthew Justin Bauer <mjbauer95@gmail.com>2018-05-03 13:33:42 -0500
committerGitHub <noreply@github.com>2018-05-03 13:33:42 -0500
commitb45ef79b74d267891a11c1775a473c610ecebe78 (patch)
tree4d64fccd8636a4166de6885dde679962537a5a54 /pkgs/applications/graphics
parent40f809c214d4e83b8cbc8efcd13276cac9237ac8 (diff)
parent143978a477e4891bd94be6d9fcf257f726b403cd (diff)
downloadnixlib-b45ef79b74d267891a11c1775a473c610ecebe78.tar
nixlib-b45ef79b74d267891a11c1775a473c610ecebe78.tar.gz
nixlib-b45ef79b74d267891a11c1775a473c610ecebe78.tar.bz2
nixlib-b45ef79b74d267891a11c1775a473c610ecebe78.tar.lz
nixlib-b45ef79b74d267891a11c1775a473c610ecebe78.tar.xz
nixlib-b45ef79b74d267891a11c1775a473c610ecebe78.tar.zst
nixlib-b45ef79b74d267891a11c1775a473c610ecebe78.zip
Merge pull request #39907 from matthewbauer/work
Miscellaneous cleanups
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/draftsight/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/applications/graphics/draftsight/default.nix b/pkgs/applications/graphics/draftsight/default.nix
index 9ab43ff94337..b604099096ff 100644
--- a/pkgs/applications/graphics/draftsight/default.nix
+++ b/pkgs/applications/graphics/draftsight/default.nix
@@ -4,8 +4,6 @@
   libX11, libXcursor, libXrandr, libxcb, libXi, libSM, libICE,
   libXrender, libXcomposite }:
 
-assert stdenv.system == "x86_64-linux";
-
 let version = "2017-SP2"; in
 stdenv.mkDerivation {
   name = "draftsight-${version}";
@@ -71,6 +69,6 @@ stdenv.mkDerivation {
     homepage = https://www.3ds.com/products-services/draftsight-cad-software/;
     license = stdenv.lib.licenses.unfree;
     maintainers = with maintainers; [ hodapp ];
-    platforms = platforms.linux;
+    platforms = [ "x86_64-linux" ];
   };
 }